home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / Centri / Centri.dir / 00099_Script_Definition < prev    next >
Text File  |  1999-02-25  |  1KB  |  30 lines

  1. property whichSprite, orangeSprite, blackSprite
  2.  
  3. on beginSprite me
  4.   set the moveableSprite of sprite the spriteNum of me = TRUE
  5.   set the moveableSprite of sprite 20 = TRUE
  6.   set the moveableSprite of sprite 23 = TRUE
  7. end 
  8.  
  9.  
  10. on mouseUp me
  11.   if the memberNum of sprite the spriteNum of me = blackSprite then
  12.     set the memberNum of sprite the spriteNum of me = orangeSprite
  13.     set the visibility of sprite whichSprite = TRUE
  14.     set the loc of sprite whichSprite to point (the mouseh, the mousev - 60)
  15.   else 
  16.     set the memberNum of sprite the spriteNum of me = blackSprite
  17.     set the visibility of sprite whichSprite = FALSE
  18.     set the loc of sprite whichSprite to point (100, -400)
  19.     
  20.   end if
  21. end
  22.  
  23.  
  24. on getPropertyDescriptionList
  25.   set p_list = [¼
  26.             whichSprite: [ #default:0, #format:#integer, #comment:"Scroll displacement"],¼
  27.   orangeSprite: [ #default:0, #format:#integer, #comment:"orangeSprite"],¼
  28.    blackSprite: [ #default:0, #format:#integer, #comment:"blackSprite"]] 
  29.   return p_list
  30. end